SimpleStarRegionInfo
BeaconCount
The amount of beacons in the region at the time of the scan.
It is of the type number
.
Name
The name of the region.
It is of the type string
.
Size
The visual size of the star.
It ranges between 2000 and 6000.
It increments by 1.
It is of the type number
.
SubType
The type of the star, such as Red
, Orange
, Yellow
, etc.
It is of the type StarType
.
Type
The type of the region.
It is always the string Star
.
Luau Type
This is the luau type for SimpleStarRegionInfo
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type SimpleStarRegionInfo = {
BeaconCount: number,
Type: "Star",
Name: string,
SubType: StarType,
Size: number,
}